You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

page.tsx 316B

1234567891011121314
  1. import React from 'react'
  2. import Main from '@/app/components/share/text-generation'
  3. import AuthenticatedLayout from '../../components/authenticated-layout'
  4. const Workflow = () => {
  5. return (
  6. <AuthenticatedLayout>
  7. <Main isWorkflow />
  8. </AuthenticatedLayout>
  9. )
  10. }
  11. export default React.memo(Workflow)